home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19951130-19960209 / 000226_news@columbia.edu _Wed Jan 3 20:05:40 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id UAA04641 for <kermit.misc@watsun>; Wed, 3 Jan 1996 20:05:40 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id UAA26602 for kermit.misc@watsun; Wed, 3 Jan 1996 20:05:38 -0500 (EST)
  4. Path: news.columbia.edu!panix!news.eecs.umich.edu!caen!spool.mu.edu!howland.reston.ans.net!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  5. From: jrd@cc.usu.edu (Joe Doupnik)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: The Future (was Re: Connecting to the Same Site Multiple Times)
  8. Message-ID: <1996Jan3.152704.70413@cc.usu.edu>
  9. Date: 3 Jan 96 15:27:03 MDT
  10. References: <4bcrfp$lvh@piano.synapse.net> <4bt2qs$ap@gaia.ns.utk.edu> <4cekcm$jos@huron.eel.ufl.edu>
  11. Organization: Utah State University
  12. Lines: 50
  13.  
  14. In article <4cekcm$jos@huron.eel.ufl.edu>, afn10375@afn.org (David A. Johns) writes:
  15. > Joe Doupnik (jrd@cc.usu.edu) wrote:
  16. > #   > I'd also like to see a way to preserve the scrollback buffer
  17. > #   > when logging out of a TCP session.
  18. > #
  19. > #           It is preserved, actually. But to see it we must be in
  20. > #   terminal emulation mode where the character sets and visual
  21. > #   attributes are available. It is available when a new session
  22. > #   is started, or when we rollback during another session.
  23. > I just ran a little test.  I started up a TCP session on host A and
  24. > then started up another on host B.  While on host B the screen data
  25. > from host A were still visible.  I then went back to host A, but found
  26. > that nothing in the B session was in the scrollback buffer.  I then
  27. > created a new screen on A and switched back to B.  Nothing of the new
  28. > A material was visible on B.
  29.  
  30.     Something isn't right at your place. This does not happen here.
  31. Each fresh Telnet session gets a fresh startup screen, a clean one.
  32. Which version of MSK please, and is the scrollback buffer in expanded
  33. memory (and is that memory given a safe place for its frame buffer?).
  34. SHOW TERM will tell if the buffer is in expanded memory (Term: expanded-memory
  35. on or off).
  36.  
  37. > So it looks like rather than having one continuous buffer, when you
  38. > start a new buffer, old material "seeds" it, but nothing new gets
  39. > added.
  40.  
  41.     There's no seeding per se. There is only one scrollback buffer,
  42. which can be gigantic. What is added are lines scrolled off the top
  43. of the screen. If no scroll off the top then no scrollback information.
  44.  
  45. > Also, when you log off of simultaneous sessions, each buffer is lost
  46. > except for the last one.  If you try to look at that one by entering
  47. > C, Kermit will also reconnect, so you have to deal with the login
  48. > prompt.
  49.  
  50.     No, the scrollback buffer persists. The active screen vanishes
  51. however because it is not in the scrollback buffer.
  52.  
  53. > All this doesn't seem like a system that anyone would actually design
  54. > intentionally.
  55.  
  56.     But I did, and I find it to be productive yet use only reasonable
  57. resources. It could be better, but that will cost.
  58.     Thanks,
  59.         Joe D.
  60.  
  61. > David Johns